home *** CD-ROM | disk | FTP | other *** search
/ Risc World 5 / Risc World 5.iso / SOFTWARE / Issue5 / PD / DIRSYNC / LegalStuff / ccres / c / SaveAs < prev   
Text File  |  2004-03-20  |  1KB  |  49 lines

  1. /* _SaveAs.c
  2.    $Id: SaveAs.c,v 1.2 2004/03/20 22:12:19 joty Exp $
  3.  
  4.    Copyright (c) 2003-2004 Dave Appleby / John Tytgat
  5.  
  6.    This file is part of CCres.
  7.  
  8.    CCres is free software; you can redistribute it and/or modify
  9.    it under the terms of the GNU General Public License as published by
  10.    the Free Software Foundation; either version 2 of the License, or
  11.    (at your option) any later version.
  12.  
  13.    CCres is distributed in the hope that it will be useful,
  14.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.    GNU General Public License for more details.
  17.  
  18.    You should have received a copy of the GNU General Public License
  19.    along with CCres; if not, write to the Free Software
  20.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  21.  */
  22.  
  23. #include "ccres.h"
  24.  
  25. #include <string.h>
  26.  
  27. #include <OSLib/saveas.h>
  28.  
  29.  
  30. void action_save_to_file(PDATA data)
  31. {
  32.     bits fSaved;
  33.  
  34.     fSaved = (convert(data, data->poll.sa.file_name)) ? saveas_SAVE_SUCCESSFUL : 0;
  35.     saveas_file_save_completed(fSaved, data->idSaveAs, data->poll.sa.file_name);
  36.     if (fSaved == saveas_SAVE_SUCCESSFUL) {
  37.         toolbox_hide_object(0, data->idSaveAs);
  38.     }
  39. }
  40.  
  41.  
  42. void action_save_completed(PDATA data)
  43. {
  44.     if (data->poll.sa.flags & saveas_SAVE_SUCCESSFUL) {
  45.         my_osfile_delete(data->poll.sa.file_name);
  46.     }
  47. }
  48.  
  49.